• Welcome to The Cave of Dragonflies forums, where the smallest bugs live alongside the strongest dragons.

    Guests are not able to post messages or even read certain areas of the forums. Now, that's boring, don't you think? Registration, on the other hand, is simple, completely free of charge, and does not require you to give out any personal information at all. As soon as you register, you can take part in some of the happy fun things at the forums such as posting messages, voting in polls, sending private messages to people and being told that this is where we drink tea and eat cod.

    Of course I'm not forcing you to do anything if you don't want to, but seriously, what have you got to lose? Five seconds of your life?

Search results

  1. Abwayax

    BBCode Parser

    Well, the way MyBB does that is that, instead of using "b" and "i" tags, it uses span tags like so <span style="font-weight: bold;"><span style="font-style: italic;">foo</span></span> That way, if the tags are improperly nested, it doesn't matter because they're both the same type of HTML tag...
  2. Abwayax

    BBCode Parser

    That's because you nested the tags wrong in the first place. If you open "b" before "i", you close out "i" before closing "b." foo becomes <b><i>foo</i></b>, which is valid HTML.
Back
Top Bottom